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:
authorgitlabhq <m@gitlabhq.com>2011-10-17 01:07:10 +0400
committergitlabhq <m@gitlabhq.com>2011-10-17 01:07:10 +0400
commit9265de3d25715aeafd38a4ef41596dca058dc18c (patch)
treee755a2c4c0c0451c90a8bc0e75ffae1950a2f6fd /spec/requests/snippets_spec.rb
parent526ad466c86e69c3447c192d8cae8da653556058 (diff)
snippets are ready
Diffstat (limited to 'spec/requests/snippets_spec.rb')
-rw-r--r--spec/requests/snippets_spec.rb101
1 files changed, 101 insertions, 0 deletions
diff --git a/spec/requests/snippets_spec.rb b/spec/requests/snippets_spec.rb
new file mode 100644
index 00000000000..00ae58dad87
--- /dev/null
+++ b/spec/requests/snippets_spec.rb
@@ -0,0 +1,101 @@
+require 'spec_helper'
+
+describe "Snippets" do
+ let(:project) { Factory :project }
+
+ before do
+ login_as :user
+ project.add_access(@user, :read, :write)
+ end
+
+ describe "GET /snippets" do
+ before do
+ @snippet = Factory :snippet,
+ :author => @user,
+ :project => project
+
+ visit project_snippets_path(project)
+ end
+
+ subject { page }
+
+ it { should have_content(@snippet.title) }
+ it { should have_content(@snippet.project.name) }
+ it { should have_content(@snippet.author.name) }
+
+ describe "Destroy" do
+ before do
+ # admin access to remove snippet
+ @user.users_projects.destroy_all
+ project.add_access(@user, :read, :write, :admin)
+ visit project_snippets_path(project)
+ end
+
+ it "should remove entry" do
+ expect {
+ click_link "destroy_snippet_#{@snippet.id}"
+ }.to change { Snippet.count }.by(-1)
+ end
+ end
+ end
+
+ describe "New snippet" do
+ before do
+ visit project_snippets_path(project)
+ click_link "New Snippet"
+ end
+
+ it "should open new snippet popup" do
+ page.current_path.should == new_project_snippet_path(project)
+ end
+
+ describe "fill in" do
+ before do
+ fill_in "snippet_title", :with => "login function"
+ fill_in "snippet_file_name", :with => "test.rb"
+ fill_in "snippet_content", :with => "def login; end"
+ end
+
+ it { expect { click_button "Save" }.to change {Snippet.count}.by(1) }
+
+ it "should add new snippet to table" do
+ click_button "Save"
+ page.current_path.should == project_snippet_path(project, Snippet.last)
+ page.should have_content "login function"
+ page.should have_content "test.rb"
+ end
+ end
+ end
+
+ describe "Edit snippet" do
+ before do
+ @snippet = Factory :snippet,
+ :author => @user,
+ :project => project
+ visit project_snippets_path(project)
+ click_link "Edit"
+ end
+
+ it "should open edit page" do
+ page.current_path.should == edit_project_snippet_path(project, @snippet)
+ end
+
+ describe "fill in" do
+ before do
+ fill_in "snippet_title", :with => "login function"
+ fill_in "snippet_file_name", :with => "test.rb"
+ fill_in "snippet_content", :with => "def login; end"
+ end
+
+ it { expect { click_button "Save" }.to_not change {Snippet.count} }
+
+ it "should update snippet fields" do
+ click_button "Save"
+
+ page.current_path.should == project_snippet_path(project, @snippet)
+ page.should have_content "login function"
+ page.should have_content "test.rb"
+ end
+ end
+ end
+end