diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-08-30 19:10:53 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-08-30 19:12:55 -0400 |
commit | 77053a6c217e06770a348ac989992afbd41697f6 (patch) | |
tree | 11df50675162be2045777c1f59c312d359e0d6cf /spec/lib/charts_spec.rb | |
parent | 74b995d17b095e326177e7c0e452f0df3a1ab885 (diff) | |
download | gitlab-ci-rs-rspec3.tar.gz |
Convert to RSpec3 syntax via transpecrs-rspec3
Command:
transpec -c 'bundle exec rspec spec -t ~feature' \
-o should,oneliner,should_receive
Diffstat (limited to 'spec/lib/charts_spec.rb')
-rw-r--r-- | spec/lib/charts_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/charts_spec.rb b/spec/lib/charts_spec.rb index 60d1b5a..2f27723 100644 --- a/spec/lib/charts_spec.rb +++ b/spec/lib/charts_spec.rb @@ -9,6 +9,6 @@ describe Charts::BuildTime do it 'should return build times in minutes' do chart = described_class.new(@project) - chart.build_times.should eq [2] + expect(chart.build_times).to eq [2] end end |