Skip to content

Instantly share code, notes, and snippets.

@riseshia
Created August 28, 2016 05:27
Show Gist options
  • Save riseshia/357e2bb22b370b9cdb18a250311dded9 to your computer and use it in GitHub Desktop.
Save riseshia/357e2bb22b370b9cdb18a250311dded9 to your computer and use it in GitHub Desktop.
simple example
class Task
attr_accessor :done_flg
def done?
done_flg
end
end
class TaskTest
test "done? returns true" do
# ...
end
# I could not do this
def test_done?_returns_true
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment