Skip to content

Instantly share code, notes, and snippets.

@thatrubylove
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thatrubylove/10799858 to your computer and use it in GitHub Desktop.
Save thatrubylove/10799858 to your computer and use it in GitHub Desktop.
tdding-patshaughnessys-ask-dont-tell
require 'minitest/autorun'
describe "#lines_after_word(lines, target)" do
let(:file) { File.expand_path("../innisfree.txt", __FILE__) }
let(:lines) { File.readlines(file) }
it "must return an empty array if no lines include the target word" do
lines_after_word(lines, "hola").must_equal []
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment