Last active
August 29, 2015 14:21
-
-
Save maxehmookau/b8a97fda9169824bd23c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CustomerTest | |
test 'get a list of all customers who have spent over £100 this month' do | |
create_list(:customer, 10, :spent_over_100_pounds) | |
create_list(:customer, 10, :spent_less_than_100_pounds) | |
assert_equal 10, Customer.active.size | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment