Skip to content

Commit fe42e1b

Browse files
committed
skip tests that expect map data which was removed from the json earlier
1 parent 17a5350 commit fe42e1b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/unit/issues_to_json_test.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ class IssuesToJsonTest < ActiveSupport::TestCase
2727
assert table = h['attributes']['datasource'][0]['table']['data']
2828
assert_equal @issues[0].subject, table[0].last
2929
assert_equal @issues[1].subject, table[1].last
30+
end
3031

32+
test 'should include map json in attributes' do
33+
skip 'removed for now'
34+
assert j = RedmineGttPrint::IssuesToJson.(@issues, 'das layout')
35+
assert h = JSON.parse(j)
3136
assert map = h['attributes']['map']
3237
assert_equal 2, map['center'].size
3338
assert geo = map['layers'][0]['geoJson']

0 commit comments

Comments
 (0)