Created
November 3, 2012 06:24
-
-
Save jnwheeler44/4006271 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
describe Chair do | |
it 'gets home page data' do | |
# These wouldn't really be here | |
location = Factory.create(:location) | |
chair = Factory.create(:chair) | |
user = Factory.create(:user) | |
Chair.get_home_page_data(location, user).should include(chair) | |
end | |
end | |
# 1 examples, 0 failures |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment