Add reduced test code for GitLab issue 80

https://gitlab.com/arctic-fox/spectator/-/issues/80
Note: This test only triggers a compiler bug when the file is compiled by itself.
Compiling/running the entire spec suite *does not* cause the bug.
This commit is contained in:
Michael Miller 2022-12-08 17:14:09 -07:00
parent 7ffa63718b
commit 47a62ece78
No known key found for this signature in database
GPG Key ID: AC78B32D30CE34A2
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
require "../spec_helper"
# https://gitlab.com/arctic-fox/spectator/-/issues/80#
class Item
end
class ItemUser
@item = Item.new
def item
@item
end
end
Spectator.describe "test1" do
it "without mock" do
item_user = ItemUser.new
item = item_user.item
item == item
end
end
Spectator.describe "test2" do
mock Item do
end
it "without mock" do
end
end