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

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

import os 

import nose 

import shutil 

import yaml 

import unittest 

 

from polyglot.utKit import utKit 

 

# load settings 

stream = file("/Users/Dave/.config/polyglot/polyglot.yaml", 'r') 

settings = yaml.load(stream) 

stream.close() 

 

 

# SETUP AND TEARDOWN FIXTURE FUNCTIONS FOR THE ENTIRE MODULE 

moduleDirectory = os.path.dirname(__file__) 

utKit = utKit(moduleDirectory) 

log, dbConn, pathToInputDir, pathToOutputDir = utKit.setupModule() 

utKit.tearDownModule() 

 

# xnose-class-to-test-main-command-line-function-of-module 

 

# import shutil 

try: 

shutil.rmtree(pathToOutputDir) 

except: 

pass 

 

# Recursively create missing directories 

if not os.path.exists(pathToOutputDir): 

os.makedirs(pathToOutputDir) 

 

 

class test_printpdf(unittest.TestCase): 

 

def test_printpdf_function(self): 

 

from polyglot import printpdf 

pdf = printpdf( 

log=log, 

settings=settings, 

url="https://en.wikipedia.org/wiki/Volkswagen", 

folderpath=pathToOutputDir, 

title=False, 

append=False, 

readability=True 

).get() 

 

def test_printpdf_original_function(self): 

 

from polyglot import printpdf 

pdf = printpdf( 

log=log, 

settings=settings, 

url="https://en.wikipedia.org/wiki/Volkswagen", 

folderpath=pathToOutputDir, 

title=False, 

append="_original", 

readability=False 

).get() 

 

def test_printpdf_original_rename_function(self): 

 

from polyglot import printpdf 

pdf = printpdf( 

log=log, 

settings=settings, 

url="https://en.wikipedia.org/wiki/Volkswagen", 

folderpath=pathToOutputDir, 

title="Cars", 

append="_original", 

readability=False 

).get() 

 

# x-print-testpage-for-pessto-marshall-web-object 

 

# x-class-to-test-named-worker-function