Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-21 12:41:37 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-21 12:41:37 +0400
commit03f6a28ec0dab308070e83ec422f12fa289aad9f (patch)
treea2b72dd5944863f38f7c7397590626223ab0fc5a /spec/requests/admin/admin_hooks_spec.rb
parent9f722427e5835e4aeb5c1dd6a9cc8720b40d87c0 (diff)
move capybara scenarios to spec/features
Diffstat (limited to 'spec/requests/admin/admin_hooks_spec.rb')
-rw-r--r--spec/requests/admin/admin_hooks_spec.rb51
1 files changed, 0 insertions, 51 deletions
diff --git a/spec/requests/admin/admin_hooks_spec.rb b/spec/requests/admin/admin_hooks_spec.rb
deleted file mode 100644
index bc0586b2712..00000000000
--- a/spec/requests/admin/admin_hooks_spec.rb
+++ /dev/null
@@ -1,51 +0,0 @@
-require 'spec_helper'
-
-describe "Admin::Hooks" do
- before do
- @project = create(:project)
- login_as :admin
-
- @system_hook = create(:system_hook)
-
- end
-
- describe "GET /admin/hooks" do
- it "should be ok" do
- visit admin_root_path
- within ".main_menu" do
- click_on "Hooks"
- end
- current_path.should == admin_hooks_path
- end
-
- it "should have hooks list" do
- visit admin_hooks_path
- page.should have_content(@system_hook.url)
- end
- end
-
- describe "New Hook" do
- before do
- @url = Faker::Internet.uri("http")
- visit admin_hooks_path
- fill_in "hook_url", with: @url
- expect { click_button "Add System Hook" }.to change(SystemHook, :count).by(1)
- end
-
- it "should open new hook popup" do
- page.current_path.should == admin_hooks_path
- page.should have_content(@url)
- end
- end
-
- describe "Test" do
- before do
- WebMock.stub_request(:post, @system_hook.url)
- visit admin_hooks_path
- click_link "Test Hook"
- end
-
- it { page.current_path.should == admin_hooks_path }
- end
-
-end