( self )
| 704 | data["first"] = data["fourth"] |
| 705 | |
| 706 | def testNoExtensions( self ) : |
| 707 | |
| 708 | p = IECore.FileNameParameter( |
| 709 | name = "f", |
| 710 | description = "d", |
| 711 | ) |
| 712 | self.assertEqual( p.extensions, [] ) |
| 713 | |
| 714 | p.setValue( IECore.StringData( "hello.tif" ) ) |
| 715 | p.setValue( IECore.StringData( "hello" ) ) |
| 716 | |
| 717 | def testNotADirectory( self ) : |
| 718 |
nothing calls this directly
no test coverage detected