forked from Parbhat/Python-Pedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
99 lines (81 loc) · 4.84 KB
/
testing.html
File metadata and controls
99 lines (81 loc) · 4.84 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Testing | Python Pedia</title>
<meta name="description" content="Testing is very important for every project in today's world. Python has testing frameworks like unittest, nose, pytest, mamba etc. Web testing with selenium, splinter and fake data using faker, fake2db.">
<meta name="keywords" content="Python, web, Scientific, Numeric, django, flask, pandas, ipython, scipy
, kivy, numpy, pygame, networking, scikit, learn, pytest, nose, tutorials, books">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Parbhat Puri">
<link rel="apple-touch-icon" href="../apple-touch-icon.png">
<!-- Open Graph -->
<meta property="og:url" content="https://pythonpedia.com/applications/testing.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Testing | Python Pedia" />
<meta property="og:description" content="Testing is very important for every project in today's world. Python has testing frameworks like unittest, nose, pytest, mamba etc. Web testing with selenium, splinter and fake data using faker, fake2db." />
<meta property="og:image" content="http://i.imgur.com/CJVInER.png" />
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@pythonpedia">
<meta name="twitter:creator" content="@parbhatpuri">
<meta name="twitter:title" content="Testing | Python Pedia">
<meta name="twitter:description" content="Testing is very important for every project in today's world. Python has testing frameworks like unittest, nose, pytest, mamba etc. Web testing with selenium, splinter and fake data using faker, fake2db.">
<meta name="twitter:image" content="http://i.imgur.com/CJVInER.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/legacy.js'></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/flatdoc.js'></script>
<link rel="stylesheet" type="text/css" href="../css/app-custom.css">
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/script.js'></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Initializer -->
<script>
Flatdoc.run({
fetcher: Flatdoc.file('app-markdowns/testing.md')
});
</script>
</head>
<body role='flatdoc'>
<div id="heading">
<div id="heading-logo"><a href="/"><img src="../img/logo.PNG" class="app-logo"></a></div>
<div id="heading-content">
<h1>Python Pedia</h1>
<h4>One Stop for Python Programming Resources. It's all about Python.</h4>
</div>
<div id="heading-social">
<a href="https://github.com/parbhat/python-pedia/commits/gh-pages.atom" target="_blank"><i class="fa fa-rss fa-2x"></i></a>
<a href="https://twitter.com/pythonpedia" target="_blank"><i class="fa fa-twitter fa-2x"></i></a>
<a href="https://github.com/parbhat/python-pedia" target="_blank"><i class="fa fa-github fa-2x"></i></a>
</div>
</div>
<div class='header'>
<div class='left'>
<h1><a href="/">Python Pedia</a></h1>
<ul>
<li><a href='https://github.com/parbhat/python-pedia' target="_blank">View on GitHub</a></li>
<li><a href='https://github.com/parbhat/python-pedia/issues' target="_blank">Issues</a></li>
</ul>
</div>
<div class='right'>
<!-- GitHub buttons: see http://ghbtns.com -->
<iframe src="https://ghbtns.com/github-btn.html?user=parbhat&repo=python-pedia&type=star&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=parbhat&repo=python-pedia&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
</div>
</div>
<div class='content-root'>
<div class='menubar'>
<div class='menu section' role='flatdoc-menu'></div>
</div>
<div role='flatdoc-content' class='content'></div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66860029-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>