fix(test): Use kscript as test candidate

instead of crash, which doesn't exist anymore
This commit is contained in:
Raphael Reitzig 2023-06-25 18:53:17 +02:00
parent 1b2824d37f
commit e9f967501c
4 changed files with 57 additions and 57 deletions

View file

@ -24,6 +24,6 @@ Then(/^the output is$/) do |text|
expect(@response_fish_script).to eq(text.strip)
end
Then(/^file ([a-zA-Z0-9-_.\/]+) contains$/) do |file,content|
Then(/^file ([a-zA-Z0-9\-_.\/]+) contains$/) do |file,content|
expect(File.readlines(file).join("").strip).to eq(content.strip)
end