diff options
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/build_spec.rb | 8 | ||||
-rw-r--r-- | spec/models/commit_spec.rb | 16 | ||||
-rw-r--r-- | spec/models/project_spec.rb | 2 |
3 files changed, 18 insertions, 8 deletions
diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index d1a3a16..753da0d 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -3,15 +3,23 @@ # Table name: builds # # id :integer not null, primary key +# project_id :integer +# ref :string(255) # status :string(255) # finished_at :datetime # trace :text # created_at :datetime # updated_at :datetime +# sha :string(255) # started_at :datetime # tmp_file :string(255) +# before_sha :string(255) +# push_data :text # runner_id :integer +# coverage :float # commit_id :integer +# commands :text +# job_id :integer # require 'spec_helper' diff --git a/spec/models/commit_spec.rb b/spec/models/commit_spec.rb index 380a9b1..75f236b 100644 --- a/spec/models/commit_spec.rb +++ b/spec/models/commit_spec.rb @@ -2,14 +2,14 @@ # # Table name: commits # -# id :integer not null, primary key -# project_id :integer -# ref :string(255) -# sha :string(255) -# before_sha :string(255) -# push_data :text -# created_at :datetime -# updated_at :datetime +# id :integer not null, primary key +# project_id :integer +# ref :string(255) +# sha :string(255) +# before_sha :string(255) +# push_data :text +# created_at :datetime +# updated_at :datetime # require 'spec_helper' diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index a0563f9..fd33ddd 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -20,6 +20,8 @@ # email_recipients :string(255) default(""), not null # email_add_committer :boolean default(TRUE), not null # email_only_broken_builds :boolean default(TRUE), not null +# skip_refs :string(255) +# coverage_regex :string(255) # require 'spec_helper' |