module("PDBInterpreter");

test("Check Read Without Error", function(){
	var mol = readPDB(oneBNA);
	expect(2);
	equals(566, mol.atoms.length, 'Check 566 atoms');
	equals(544, mol.bonds.length, 'Check 544 bonds');
});
