def test_delete_all(self):
		notes = NotesApplication()
		notes.create("Day one at Andela BC")
		notes.create("Day two at Andela BC")
		notes.delete(1)
		notes.delete(1)
		self.assertEqual(len(notes.notes),0, msg="List should not be the same length since delete was successful")
	def test_delete_empty_list(self):
		notes = NotesApplication()
		notes.delete(1)
		notes.delete(1)
		self.assertEqual(len(notes.notes),0, msg="List should not be the same length since delete was successful")
	def test_delete_empty_argument(self):
		notes = NotesApplication()
		notes.create("Day one at Andela BC")
		notes.create("Day two at Andela BC")
		notes.delete()
		self.assertListEqual(notes.notes,["Day one at Andela BC","Day two at Andela BC"], msg="List supposed to be unchange since delet didnt affect anything")
note = NotesApplication(author)
while prompt != "quit":	
	#prompt = raw_input("Enter the content of your note")
	#note.create(prompt)
	prompt = raw_input("type\n * 'Quit' to quit\n * 'Create' to create new note\n * 'List' to list all your notes\n *'Get' to get a saved note based on its id\n * 'Search' to look for notes with contain your specified search strind \n* 'Edit' to edit and change an already saved note\n * 'Delete' to delete and note\n")
	
	if prompt.lower() == "create":
		prompt = raw_input("Enter the note you want to create\n")
		note.create(prompt)
	elif prompt.lower() =="list":
		note.list()
	elif prompt.lower() =="get":
		note.list()
		prompt = raw_input("Enter the ID of the note you want to get for\n")
		note.get(int(prompt))
	elif prompt.lower() =="search":
		prompt = raw_input("Type in the text you are looking \n")
		note.search(str(prompt))
	elif prompt.lower() == "edit":
		note.list()
		myid = raw_input("enter the 'ID' of the note you want to edit\n")
		prompt = raw_input("enter text here\n")
		note.edit(myid,str(prompt))
	elif prompt.lower() =='delete':
		note.list()
		prompt = raw_input("Enter the 'ID' of the note you want to delete\n")
		note.delete(int(prompt))
	else:
		print "Bad command, Try again"
		continue