Use a different module

MessageEncryptor loads `json` and we want a test that doesn't do that.
This commit is contained in:
Rafael Mendonça França 2024-01-04 02:51:02 +00:00
parent 28997e4cda
commit e55d59a232
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ module JSONTest
ModuleTests = [[ Module, %("Module") ],
[ Class, %("Class") ],
[ ActiveSupport, %("ActiveSupport") ],
[ ActiveSupport::MessageEncryptor, %("ActiveSupport::MessageEncryptor") ]]
[ ActiveSupport::Testing, %("ActiveSupport::Testing") ]]
ObjectTests = [[ Foo.new(1, 2), %({\"a\":1,\"b\":2}) ]]
HashlikeTests = [[ Hashlike.new, %({\"bar\":\"world\",\"foo\":\"hello\"}) ]]
StructTests = [[ MyStruct.new(:foo, "bar"), %({\"name\":\"foo\",\"value\":\"bar\"}) ],