def test_plot_conic_curve_hyperbola(self): sypl.plot_conic_curve(self.hyperbola_coefs) assert False
def test_plot_conic_curve_parabola_xy(self): sypl.plot_conic_curve(self.parabola_xy_coefs) # not working assert False
def test_plot_conic_curve_ellipse(self): sypl.plot_conic_curve(self.ellipse_coefs) assert True
def test_plot_conic_curve_parabola_y(self): sypl.plot_conic_curve(self.parabola_y_coefs) assert True
def test_plot_conic_curve_circle(self): sypl.plot_conic_curve(self.circle_coefs, resolution=1000) plt.show() assert True