2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Regex do
|
2015-04-26 12:48:37 +05:30
|
|
|
describe 'project path regex' do
|
|
|
|
it { expect('gitlab-ce').to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('gitlab_git').to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('_underscore.js').to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('100px.com').to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('?gitlab').not_to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('git lab').not_to match(Gitlab::Regex.project_path_regex) }
|
|
|
|
it { expect('gitlab.git').not_to match(Gitlab::Regex.project_path_regex) }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'project name regex' do
|
2015-04-26 12:48:37 +05:30
|
|
|
it { expect('gitlab-ce').to match(Gitlab::Regex.project_name_regex) }
|
|
|
|
it { expect('GitLab CE').to match(Gitlab::Regex.project_name_regex) }
|
|
|
|
it { expect('100 lines').to match(Gitlab::Regex.project_name_regex) }
|
|
|
|
it { expect('gitlab.git').to match(Gitlab::Regex.project_name_regex) }
|
|
|
|
it { expect('?gitlab').not_to match(Gitlab::Regex.project_name_regex) }
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|