summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/requests/repositories_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/requests/repositories_spec.rb b/spec/requests/repositories_spec.rb
index 92933b4062d..8c3ebf1847e 100644
--- a/spec/requests/repositories_spec.rb
+++ b/spec/requests/repositories_spec.rb
@@ -31,5 +31,28 @@ describe "Repository" do
page.all(:css, ".project-update").size.should == 20
end
end
+
+ describe "GET /:project_name/repository/branches" do
+ before do
+ visit branches_project_repository_path(@project)
+ end
+
+ it "should have link to repo activities" do
+ page.should have_content("Branches")
+ page.should have_content("master")
+ end
+ end
+
+ # TODO: Add new repo to seeds with tags list
+ describe "GET /:project_name/repository/tags" do
+ before do
+ visit tags_project_repository_path(@project)
+ end
+
+ it "should have link to repo activities" do
+ page.should have_content("Tags")
+ page.should have_content("No tags")
+ end
+ end
end