Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

# This file is part of astro_metadata_translator. 

# 

# Developed for the LSST Data Management System. 

# This product includes software developed by the LSST Project 

# (http://www.lsst.org). 

# See the LICENSE file at the top-level directory of this distribution 

# for details of code ownership. 

# 

# Use of this source code is governed by a 3-clause BSD-style 

# license that can be found in the LICENSE file. 

 

import unittest 

 

import astro_metadata_translator 

 

 

class BasicTestCase(unittest.TestCase): 

 

def test_basic(self): 

version = astro_metadata_translator.__version__ 

self.assertIsNotNone(version) 

 

 

24 ↛ 25line 24 didn't jump to line 25, because the condition on line 24 was never trueif __name__ == "__main__": 

unittest.main()