Created
July 1, 2011 10:15
-
-
Save raine/1058236 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
| it 'should create a new ApplicationVersion with correct attributes' do | |
| # uncommenting line below causes the @app.application_versions return [] making the test fail; ??? | |
| # @app.application_versions.should be_empty | |
| FakeFS do | |
| expect { process_bundle }.to change(ApplicationVersion, :count).by(1) | |
| end | |
| av = @app.application_versions.first | |
| av.version.should == @version | |
| av.user_id.should == 1 | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment