From: Morgan Haskel Date: Tue, 24 Feb 2015 21:20:29 +0000 (-0800) Subject: Convert specs to RSpec 3.1.7 syntax with Transpec X-Git-Tag: 2.0.0~34^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1139f801eb7c603c4ee10ef165f03a710ef8bf38;hp=1139f801eb7c603c4ee10ef165f03a710ef8bf38;p=puppet-modules%2Fpuppetlabs-apt.git Convert specs to RSpec 3.1.7 syntax with Transpec This conversion is done by Transpec 3.0.8 with the following command: transpec spec/classes spec/defines spec/unit * 87 conversions from: it { should ... } to: it { is_expected.to ... } * 14 conversions from: obj.should to: expect(obj).to * 7 conversions from: == expected to: eq(expected) * 1 conversion from: it { should_not ... } to: it { is_expected.not_to ... } For more details: https://github.com/yujinakayama/transpec#supported-conversions ---