We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3bc6b commit 27d006aCopy full SHA for 27d006a
.github/workflows/build_rails.yml
@@ -33,6 +33,10 @@ jobs:
33
run: cd test/dummy && npm install && npm run build
34
- name: Bundle install
35
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
40
- name: Teset mini test
41
run: ruby -r minitest/mock -e "m = Minitest::Mock.new; m.expect(:call, 42); puts m.call"
42
- name: Run unit test
test.rb
@@ -0,0 +1,3 @@
1
+require 'minitest/mock'
2
+
3
+puts 'hello'
0 commit comments