Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-04 | Convert specs to RSpec 2.99.0 syntax with Transpec | Ashley Penney | |
This conversion is done by Transpec 2.2.1 with the following command: transpec spec/unit * 53 conversions from: obj.should to: expect(obj).to * 19 conversions from: == expected to: eq(expected) * 5 conversions from: lambda { }.should to: expect { }.to * 2 conversions from: be_true to: be_truthy For more details: https://github.com/yujinakayama/transpec#supported-conversions | |||
2014-05-07 | Add mode +x to spec .rb files | Hunter Haugen | |
2014-05-07 | Add the missing shebangs and fix the wrong ones for rpmlint to stop ↵ | Andrea Veri | |
complaining loudly | |||
2014-04-22 | Adjust the regular expression for facts. | Ashley Penney | |
Previously this was incorrectly handling facts that were of the form foo=1+1=2 due to the ='s in the actual fact contents. Fix this and add tests to try and prevent regressions. |