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

tags_spec.rb « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94a034dabfda2b98affe00d4764460c0bfc4c1fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'spec_helper'

describe "Tags" do
  before { login_as :user }

  # describe "GET 'tags/index'" do
  #   it "should be successful" do
  #     get 'tags/index'
  #     response.should be_success
  #   end
  # end


  describe "GET '/tags.json'" do
    before do
     @project = Factory :project
     @project.add_access(@user, :read)
     @project.tag_list = 'demo1'
     @project.save
     visit '/tags.json'
    end


    it "should contains tags" do
      page.should have_content('demo1')
    end
end



end