diff options
author | Shinya Maeda <gitlab.shinyamaeda@gmail.com> | 2017-04-17 19:59:55 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-05-23 18:08:51 +0800 |
commit | a74b7d90a84758e623c2eb8cca95175377a61523 (patch) | |
tree | 76ca973a0e573f88fc619d27c771293a9b73e1cb /spec/factories/ci/builds.rb | |
parent | d71577468cbf54bdd2621fac5f5a62f93193d4ea (diff) | |
download | gitlab-ce-a74b7d90a84758e623c2eb8cca95175377a61523.tar.gz |
Add feature test with unicode traceadd-unicode-trace-feature-test
Squashed commit of the following:
commit 43e5bba774e9e383dd55c665e82f6fcfc4ebfc4f
Author: Shinya Maeda <gitlab.shinyamaeda@gmail.com>
Date: Mon Apr 17 17:28:44 2017 +0900
Add fix
commit 09610eebdf22ad048812bb86022504b2ad917e19
Author: Shinya Maeda <gitlab.shinyamaeda@gmail.com>
Date: Mon Apr 17 17:03:49 2017 +0900
Add trace test
Diffstat (limited to 'spec/factories/ci/builds.rb')
-rw-r--r-- | spec/factories/ci/builds.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/factories/ci/builds.rb b/spec/factories/ci/builds.rb index 78ddd8d5584..f5e99fdf00b 100644 --- a/spec/factories/ci/builds.rb +++ b/spec/factories/ci/builds.rb @@ -128,6 +128,16 @@ FactoryGirl.define do end end + trait :unicode_trace do + after(:create) do |build, evaluator| + trace = File.binread( + File.expand_path( + Rails.root.join('spec/fixtures/trace/ansi-sequence-and-unicode'))) + + build.trace.set(trace) + end + end + trait :erased do erased_at Time.now erased_by factory: :user |