diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-14 15:55:00 -0500 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-14 15:55:00 -0500 |
commit | 2566c89a3232d6d4d5aa5d77821819e86424548d (patch) | |
tree | 998fc498861cbffa138c9d8a0ff76ed6d0e526c9 /spec/models/ci/commit_spec.rb | |
parent | 7d907acc3805a692fd9f6f29e529c5b5fe15ec11 (diff) | |
download | gitlab-ce-2566c89a3232d6d4d5aa5d77821819e86424548d.tar.gz |
Remove testing delegate
Diffstat (limited to 'spec/models/ci/commit_spec.rb')
-rw-r--r-- | spec/models/ci/commit_spec.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/models/ci/commit_spec.rb b/spec/models/ci/commit_spec.rb index dc071ad1c90..1b5940ad5a8 100644 --- a/spec/models/ci/commit_spec.rb +++ b/spec/models/ci/commit_spec.rb @@ -10,7 +10,6 @@ describe Ci::Commit, models: true do it { is_expected.to have_many(:builds) } it { is_expected.to validate_presence_of :sha } it { is_expected.to validate_presence_of :status } - it { is_expected.to delegate_method(:stages).to(:statuses) } it { is_expected.to respond_to :git_author_name } it { is_expected.to respond_to :git_author_email } |