[select-star] Adding optional schema to view (#6051)

This commit is contained in:
John Bodley
2018-10-08 10:32:40 -07:00
committed by GitHub
parent 9dcf8e101a
commit 1ee08fc216
4 changed files with 32 additions and 9 deletions

View File

@@ -727,6 +727,11 @@ class CoreTests(SupersetTestCase):
.format(db_id=dbobj.id))
assert data == ['this_schema_is_allowed_too']
def test_select_star(self):
self.login(username='admin')
resp = self.get_resp('/superset/select_star/1/birth_names')
self.assertIn('gender', resp)
if __name__ == '__main__':
unittest.main()