Example #1
0
    def testLoadFilename(self):

        scenePath = self.getTmpScenePath()
        doc = Document()
        doc.save(scenePath)
        doc.new(warn=False)
        doc.load(scenePath, warn=False)
        assert doc.filename == scenePath
Example #2
0
	def testLoadFilename(self):

		scenePath = self.getTmpScenePath()
		doc = Document()
		doc.save(scenePath)
		doc.new(warn=False)
		doc.load(scenePath, warn=False)
		assert doc.filename == scenePath
Example #3
0
    def testSaveAndFilename(self):

        scenePath = self.getTmpScenePath()
        doc = Document()
        doc.save(scenePath)
        assert doc.filename == scenePath
Example #4
0
	def testSaveAndFilename(self):
		
		scenePath = self.getTmpScenePath()
		doc = Document()
		doc.save(scenePath)
		assert doc.filename == scenePath