示例#1
0
 def test_compile_css_without_output_file(self):
     result = compiler.compile_css(env.test_path + 'aa.css',
                                   flag=['--verbose'])
     self.assertTrue('yellow'.encode('utf-8') in result)
示例#2
0
 def test_compile_css_without_output_file(self):
     result = compiler.compile_css(env.test_path + 'aa.css', 
         flag = ['--verbose'])
     self.assertTrue('yellow'.encode('utf-8') in result)
示例#3
0
 def test_compile_css(self):
     compiler.compile_css(env.test_path + 'aa.css',
                          env.test_path + 'bb.css')
     self.assertTrue(os.path.exists(env.test_path + 'bb.css'))
示例#4
0
 def test_compile_css(self):
     compiler.compile_css(env.test_path + 'aa.css', env.test_path + 'bb.css')
     self.assertTrue(os.path.exists(env.test_path + 'bb.css'))