def test_dataset_count_no_datasets(self): ''' Dataset and showcase count is 0 when no datasets, and no showcases. ''' stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 0)
def test_dataset_count_no_datasets(self): ''' Dataset and showcase count is 0 when no datasets, and no showcases. ''' if not tk.check_ckan_version(min_version='2.5'): raise SkipTest('get_site_statistics without user broken in CKAN 2.4') stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 0)
def test_dataset_count_no_datasets(self): ''' Dataset and showcase count is 0 when no datasets, and no showcases. ''' if not tk.check_ckan_version(min_version='2.5'): raise SkipTest( 'get_site_statistics without user broken in CKAN 2.4') stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 0)
def test_dataset_count_no_datasets_some_showcases(self): ''' Dataset and showcase count is 0 when no datasets, but some showcases. ''' for i in xrange(0, 10): factories.Dataset(type='showcase') stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 10)
def test_dataset_count_some_datasets_no_showcases(self): ''' Dataset and showcase count is correct when there are datasets, but no showcases. ''' for i in xrange(0, 10): factories.Dataset() stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 10) nosetools.assert_equal(stats['showcase_count'], 0)
def test_dataset_count_no_datasets_some_showcases(self): ''' Dataset and showcase count is 0 when no datasets, but some showcases. ''' if not tk.check_ckan_version(min_version='2.5'): raise SkipTest('get_site_statistics without user broken in CKAN 2.4') for i in xrange(0, 10): factories.Dataset(type='showcase') stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 10)
def test_dataset_count_no_datasets_some_showcases(self): ''' Dataset and showcase count is 0 when no datasets, but some showcases. ''' if not tk.check_ckan_version(min_version='2.5'): raise SkipTest( 'get_site_statistics without user broken in CKAN 2.4') for i in xrange(0, 10): factories.Dataset(type='showcase') stats = showcase_helpers.get_site_statistics() nosetools.assert_equal(stats['dataset_count'], 0) nosetools.assert_equal(stats['showcase_count'], 10)