Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to rspec3 #204

Closed
wants to merge 6 commits into from
Closed

Update to rspec3 #204

wants to merge 6 commits into from

Commits on Sep 28, 2014

  1. Convert specs to RSpec 2.99.0 syntax with Transpec

    This conversion is done by Transpec 2.2.1 with the following command:
        transpec
    
    * 58 conversions
        from: it { should ... }
          to: it { is_expected.to ... }
    
    * 21 conversions
        from: obj.should
          to: expect(obj).to
    
    * 11 conversions
        from: be_false
          to: be_falsey
    
    * 6 conversions
        from: be_true
          to: be_truthy
    
    * 6 conversions
        from: it { should_not ... }
          to: it { is_expected.not_to ... }
    
    For more details: https://github.com/yujinakayama/transpec#supported-conversions
    doc75 committed Sep 28, 2014
    Configuration menu
    Copy the full SHA
    c953fc4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    484d94b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dca78f5 View commit details
    Browse the repository at this point in the history
  4. add new travis test: ruby 2.1.1 + new version of puppet 3.5 and 3.6 (…

    …exclude unsupported combination)
    doc75 committed Sep 28, 2014
    Configuration menu
    Copy the full SHA
    6b29485 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cc5640a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    858fb03 View commit details
    Browse the repository at this point in the history