def test_executions_singleRow(self) :
		data = [
			("20130301-010101", "param1", 4),
		]

		w = ClientStatsPlot()
		result = w.executions(data)
		self.assertEqual(result, [
			"20130301-010101",
			])
示例#2
0
	def test_executions_singleRow(self) :
		data = [
			("20130301-010101", "param1", 4),
		]

		w = ClientStatsPlot()
		result = w.executions(data)
		self.assertEqual(result, [
			"20130301-010101",
			])
	def test_executions_repeatedExecution(self) :
		data = [
			("20130301-010101", "param1", 4),
			("20130301-010101", "param1", 5),
		]

		w = ClientStatsPlot()
		result = w.executions(data)
		self.assertEqual(result, [
			"20130301-010101",
			])
示例#4
0
	def test_executions_repeatedExecution(self) :
		data = [
			("20130301-010101", "param1", 4),
			("20130301-010101", "param1", 5),
		]

		w = ClientStatsPlot()
		result = w.executions(data)
		self.assertEqual(result, [
			"20130301-010101",
			])