diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/factories/builds.rb | 7 | ||||
-rw-r--r-- | spec/models/build_spec.rb | 7 | ||||
-rw-r--r-- | spec/models/job_spec.rb | 1 |
3 files changed, 3 insertions, 12 deletions
diff --git a/spec/factories/builds.rb b/spec/factories/builds.rb index 369f4ee..a722a05 100644 --- a/spec/factories/builds.rb +++ b/spec/factories/builds.rb @@ -4,20 +4,15 @@ # # 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 +# coverage :float # commands :text # job_id :integer # diff --git a/spec/models/build_spec.rb b/spec/models/build_spec.rb index de0e0b9..073a215 100644 --- a/spec/models/build_spec.rb +++ b/spec/models/build_spec.rb @@ -4,20 +4,15 @@ # # 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 +# coverage :float # commands :text # job_id :integer # diff --git a/spec/models/job_spec.rb b/spec/models/job_spec.rb index 96221d7..d993139 100644 --- a/spec/models/job_spec.rb +++ b/spec/models/job_spec.rb @@ -13,6 +13,7 @@ # build_tags :boolean default(FALSE), not null # job_type :string(255) default("parallel") # refs :string(255) +# deleted_at :datetime # require 'spec_helper' |