コード例 #1
0
ファイル: test_compiler.py プロジェクト: dexbol/bomb
 def test_compile_js_without_output_file(self):
     result = compiler.compile_js(env.test_path + 'aa.js')
     self.assertTrue('compile'.encode('utf-8') in result)
コード例 #2
0
ファイル: test_compiler.py プロジェクト: dexbol/bomb
 def test_compile_js_without_output_file(self):
     result = compiler.compile_js(env.test_path + 'aa.js')
     self.assertTrue('compile'.encode('utf-8') in result)
コード例 #3
0
ファイル: test_compiler.py プロジェクト: dexbol/bomb
 def test_compile_js(self):
     compiler.compile_js(env.test_path + 'aa.js', env.test_path + 'bb.js')
     self.assertTrue(os.path.exists(env.test_path + 'bb.js'))
コード例 #4
0
ファイル: test_compiler.py プロジェクト: dexbol/bomb
 def test_compile_js(self):
     compiler.compile_js(env.test_path + 'aa.js', env.test_path + 'bb.js')
     self.assertTrue(os.path.exists(env.test_path + 'bb.js'))