init commit
This commit is contained in:
parent
93efff9452
commit
9ba1224867
307 changed files with 11053 additions and 0 deletions
24
spec/requests/commits_notes_spec.rb
Normal file
24
spec/requests/commits_notes_spec.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe "Issues" do
|
||||
let(:project) { Factory :project }
|
||||
let!(:commit) { project.repo.commits.first }
|
||||
|
||||
before do
|
||||
login_as :user
|
||||
project.add_access(@user, :read, :write)
|
||||
end
|
||||
|
||||
describe "add new note", :js => true do
|
||||
before do
|
||||
visit project_commit_path(project, commit)
|
||||
click_link "Comments" # notes tab
|
||||
fill_in "note_note", :with => "I commented this commit"
|
||||
click_button "Add note"
|
||||
end
|
||||
|
||||
it "should conatin new note" do
|
||||
page.should have_content("I commented this commit")
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue