diff options
| author | Rémy Coutable <remy@rymai.me> | 2016-04-21 17:13:14 +0200 |
|---|---|---|
| committer | Robert Speicher <rspeicher@gmail.com> | 2016-04-25 15:28:24 -0400 |
| commit | ef340f6e777875e1bbb38752e64ba7bea3ab2f31 (patch) | |
| tree | 7a190b13b4128ba086224023253e53f605e9b10d /spec/support | |
| parent | b79c5c40e18086f10b849d069bc1c496a851cbae (diff) | |
| download | gitlab-ce-ef340f6e777875e1bbb38752e64ba7bea3ab2f31.tar.gz | |
Ensure URL in all Service subclasses are valid
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'spec/support')
| -rw-r--r-- | spec/support/issue_tracker_service_shared_example.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/support/issue_tracker_service_shared_example.rb b/spec/support/issue_tracker_service_shared_example.rb new file mode 100644 index 00000000000..b6d7436c360 --- /dev/null +++ b/spec/support/issue_tracker_service_shared_example.rb @@ -0,0 +1,7 @@ +RSpec.shared_examples 'issue tracker service URL attribute' do |url_attr| + it { is_expected.to allow_value('https://example.com').for(url_attr) } + + it { is_expected.not_to allow_value('example.com').for(url_attr) } + it { is_expected.not_to allow_value('ftp://example.com').for(url_attr) } + it { is_expected.not_to allow_value('herp-and-derp').for(url_attr) } +end |
