Specs for deploy_keys updated
This commit is contained in:
parent
b8b6515f93
commit
df583bf12d
5 changed files with 6 additions and 50 deletions
|
@ -56,11 +56,6 @@ Factory.add(:key, Key) do |obj|
|
|||
obj.key = File.read(File.join(Rails.root, "db", "pkey.example"))
|
||||
end
|
||||
|
||||
Factory.add(:deploy_key, DeployKey) do |obj|
|
||||
obj.title = "Example key"
|
||||
obj.key = File.read(File.join(Rails.root, "db", "pkey.example"))
|
||||
end
|
||||
|
||||
Factory.add(:web_hook, WebHook) do |obj|
|
||||
obj.url = Faker::Internet.url
|
||||
end
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe DeployKey do
|
||||
describe "Associations" do
|
||||
it { should belong_to(:project) }
|
||||
end
|
||||
|
||||
describe "Validation" do
|
||||
it { should validate_presence_of(:title) }
|
||||
it { should validate_presence_of(:key) }
|
||||
end
|
||||
|
||||
it { Factory.create(:deploy_key,
|
||||
:project => Factory(:project)).should be_valid }
|
||||
end
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: deploy_keys
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# project_id :integer not null
|
||||
# created_at :datetime
|
||||
# updated_at :datetime
|
||||
# key :text
|
||||
# title :string(255)
|
||||
# identifier :string(255)
|
||||
#
|
||||
|
||||
|
|
@ -2,7 +2,7 @@ require 'spec_helper'
|
|||
|
||||
describe Key do
|
||||
describe "Associations" do
|
||||
it { should belong_to(:user) }
|
||||
it { should belong_to(:user) or belong_to(:project) }
|
||||
end
|
||||
|
||||
describe "Validation" do
|
||||
|
|
|
@ -24,16 +24,6 @@ class Key
|
|||
end
|
||||
end
|
||||
|
||||
class DeployKey
|
||||
def update_repository
|
||||
true
|
||||
end
|
||||
|
||||
def repository_delete_key
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
class UsersProject
|
||||
def update_repository
|
||||
true
|
||||
|
|
|
@ -10,7 +10,7 @@ describe "Projects", "DeployKeys" do
|
|||
|
||||
describe "GET /keys" do
|
||||
before do
|
||||
@key = Factory :deploy_key, :project => project
|
||||
@key = Factory :key, :project => project
|
||||
visit project_deploy_keys_path(project)
|
||||
end
|
||||
|
||||
|
@ -41,11 +41,11 @@ describe "Projects", "DeployKeys" do
|
|||
|
||||
describe "fill in" do
|
||||
before do
|
||||
fill_in "deploy_key_title", :with => "laptop"
|
||||
fill_in "deploy_key_key", :with => "publickey234="
|
||||
fill_in "key_title", :with => "laptop"
|
||||
fill_in "key_key", :with => "publickey234="
|
||||
end
|
||||
|
||||
it { expect { click_button "Save" }.to change {DeployKey.count}.by(1) }
|
||||
it { expect { click_button "Save" }.to change {Key.count}.by(1) }
|
||||
|
||||
it "should add new key to table" do
|
||||
click_button "Save"
|
||||
|
@ -58,7 +58,7 @@ describe "Projects", "DeployKeys" do
|
|||
|
||||
describe "Show page" do
|
||||
before do
|
||||
@key = Factory :deploy_key, :project => project
|
||||
@key = Factory :key, :project => project
|
||||
visit project_deploy_key_path(project, @key)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue