-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert specs to RSpec 3.0.0 syntax with Transpec
This conversion is done by Transpec 2.2.1 with the following command: transpec spec/acceptance * 234 conversions from: it { should ... } to: it { is_expected.to ... } * 58 conversions from: obj.should to: expect(obj).to * 33 conversions from: =~ /pattern/ to: match(/pattern/) * 20 conversions from: it { should_not ... } to: it { is_expected.not_to ... } * 18 conversions from: == expected to: eq(expected) * 1 conversion from: obj.should_not to: expect(obj).not_to For more details: https://github.com/yujinakayama/transpec#supported-conversions
- Loading branch information
Ashley Penney
committed
Jun 6, 2014
1 parent
0132518
commit 2d3724d
Showing
16 changed files
with
313 additions
and
313 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.