示例#1
0
    def test_that_for_file_returns_true_if_header_filename_matches_filename(
            self):
        headerFilename = "test"
        cat = Category("anything",
                       None,
                       None,
                       None,
                       None,
                       None,
                       headerFilename=headerFilename)

        assert_that(cat.for_file(headerFilename), is_(True))
 def test_that_for_file_returns_true_if_file_is_term_plus_dot_h(self):
     term = "something"
     cat = Category(term, None, None, None, None, None)
     
     assert_that(cat.for_file(term + ".h"), is_(True))
 def test_that_for_file_returns_true_if_header_filename_matches_filename(self):
     headerFilename = "test"
     cat = Category("anything", None, None, None, None, None, headerFilename = headerFilename)
     
     assert_that(cat.for_file(headerFilename), is_(True))
 def test_that_for_file_returns_false_if_file_is_none(self):
     cat = Category("anything", None, None, None, None, None)
     
     assert_that(cat.for_file(None), is_(False))
示例#5
0
    def test_that_for_file_returns_true_if_file_is_term_plus_dot_h(self):
        term = "something"
        cat = Category(term, None, None, None, None, None)

        assert_that(cat.for_file(term + ".h"), is_(True))
示例#6
0
    def test_that_for_file_returns_false_if_file_is_none(self):
        cat = Category("anything", None, None, None, None, None)

        assert_that(cat.for_file(None), is_(False))