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 2098ea3 commit bd12bcbCopy full SHA for bd12bcb
spec/integration/plugin_helper_spec.rb
@@ -48,32 +48,6 @@ def foo
48
end
49
50
51
- context 'with other public methods' do
52
- before do
53
- test_plugin_class = Class.new(described_class) do
54
- def test_plugin
55
- Data.define(:foo).new('foo')
56
- end
57
-
58
- def other_method1
59
- 'other1'
60
61
62
- def other_method2
63
- 'other2'
64
65
66
67
- stub_const('TestPlugin', test_plugin_class)
68
69
70
- it 'adds the other methods to the team' do
71
- skip 'TODO: cannot support in this version'
72
- expect(team.test_plugin.foo).to eq('foo')
73
- expect(team.test_plugin.other_method1).to eq('other1')
74
- expect(team.test_plugin.other_method2).to eq('other2')
75
76
77
78
79
specify 'backwards compatibility' do
0 commit comments