Created
October 1, 2010 17:05
-
-
Save dreamr/606499 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 "pulling" do | |
it "should pull items from picoticker and create items" do | |
user = Factory.create(:user) | |
picoticker_block = Factory.create(:picoticker_block) | |
picoticker_block.user = user | |
picoticker_block.pull! | |
picoticker_block.picoticker_items.should_not be_empty | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment