diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2014-12-04 15:22:10 +0100 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2014-12-04 15:22:10 +0100 |
commit | cdc62cffcb86dfd939c119cba2acaf266af39f23 (patch) | |
tree | e3fc667ac2afe4feaf6bb00c4fbe3ede6cf8e931 /spec | |
parent | 490ae737c748a393e57040bfd649bb1c4244e494 (diff) | |
download | gitlab-ce-cdc62cffcb86dfd939c119cba2acaf266af39f23.tar.gz |
Add rake task for google schema whitelisting.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/tasks/gitlab/mail_google_schema_whitelisting.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/spec/tasks/gitlab/mail_google_schema_whitelisting.rb b/spec/tasks/gitlab/mail_google_schema_whitelisting.rb new file mode 100644 index 00000000000..45aaf0fc90b --- /dev/null +++ b/spec/tasks/gitlab/mail_google_schema_whitelisting.rb @@ -0,0 +1,27 @@ +require 'spec_helper' +require 'rake' + +describe 'gitlab:mail_google_schema_whitelisting rake task' do + before :all do + Rake.application.rake_require "tasks/gitlab/task_helpers" + Rake.application.rake_require "tasks/gitlab/mail_google_schema_whitelisting" + # empty task as env is already loaded + Rake::Task.define_task :environment + end + + describe 'call' do + before do + # avoid writing task output to spec progress + $stdout.stub :write + end + + let :run_rake_task do + Rake::Task["gitlab:mail_google_schema_whitelisting"].reenable + Rake.application.invoke_task "gitlab:mail_google_schema_whitelisting" + end + + it 'should run the task without errors' do + expect { run_rake_task }.to_not raise_error + end + end +end |