Skip to content

Commit 27d006a

Browse files
committed
wip
1 parent 3e3bc6b commit 27d006a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/build_rails.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
run: cd test/dummy && npm install && npm run build
3434
- name: Bundle install
3535
run: bundle install
36+
- name: try 2
37+
run: bundle exec ruby -e "require 'minitest/mock'"
38+
- name: try 3
39+
run: bundle exec ruby test.rb
3640
- name: Teset mini test
3741
run: ruby -r minitest/mock -e "m = Minitest::Mock.new; m.expect(:call, 42); puts m.call"
3842
- name: Run unit test

test.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
require 'minitest/mock'
2+
3+
puts 'hello'

0 commit comments

Comments
 (0)