tests/test_editor: Remove test that checks that a PathLib object is returned

This commit is contained in:
Eric Torres 2021-12-25 21:00:26 -08:00
parent d6f079a0ae
commit a12ed76b32
5 changed files with 5 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# Maintainer: Eric Torres <erictorres4@protonmail.com>
pkgname=file-scripts
pkgver=0.9.1
pkgver=0.9.2
pkgrel=0
pkgdesc="Various scripts for performing file-related operations such as editing and deleting."
arch=(any)

View File

@ -4,7 +4,7 @@ class HelperScripts < Formula
url "https://github.com/etorres4/file-scripts",
:using => :git
sha256 "7b6c3f363e3b34787765b5975d87f861a19eeda278612cbf8c5176e3e2732cd9"
version "0.9"
version "0.9.2"
# No build dependencies
bottle :unneeded

View File

@ -17,8 +17,8 @@
Name: file-scripts
Version: 0.9.1
Release: 1
Version: 0.9.2
Release: 0
Summary: Eric's helper scripts
License: GPL-3.0-only
Group: Productivity/File utilities

View File

@ -15,7 +15,7 @@ with open("README", "r") as fh:
# ========== Package Setup ==========
setuptools.setup(
name="file_scripts",
version="0.9",
version="0.9.2",
author="Eric Torres",
author_email="erictorres4@protonmail.com",
description="File-related helper scripts",

View File

@ -22,9 +22,6 @@ import file_scripts.editor as editor
class TestSelectEditor(unittest.TestCase):
def test_returns_path_object(self):
self.assertIsInstance(editor.select_editor(), str)
def test_override(self):
override = "doesnotexist"
with self.assertRaises(FileNotFoundError):